home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cchh01.arc / USQ.H < prev    next >
Text File  |  1986-03-14  |  384b  |  14 lines

  1. #define LARGE 30000
  2.  
  3. /* Decoding tree */
  4. EXTERN struct {
  5.     int children[2];    /* left, right */
  6. } dnode[NUMVALS - 1];
  7.  
  8. EXTERN int bpos;    /* last bit position read */
  9. EXTERN int curin;    /* last byte value read */
  10.  
  11. /* Variables associated with repetition decoding */
  12. EXTERN int repct;    /*Number of times to retirn value*/
  13. EXTERN int value;    /*current byte value or EOF */
  14.